-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(*): remove btcd support #27
Conversation
refactor notifier init merge reporter block handles
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! Some more btcd legacy in comments.
config/bitcoin.go
Outdated
WalletEndpoint string `mapstructure:"wallet-endpoint"` | ||
WalletPassword string `mapstructure:"wallet-password"` | ||
WalletName string `mapstructure:"wallet-name"` | ||
WalletCAFile string `mapstructure:"wallet-ca-file"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ZmqTxEndpoint string `mapstructure:"zmq-tx-endpoint"` | ||
DisableClientTLS bool `mapstructure:"no-client-tls"` | ||
CAFile string `mapstructure:"ca-file"` | ||
Endpoint string `mapstructure:"endpoint"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there now a difference between endpoint
and wallet-endpoint
? or wallet-endpoint
was supossed to be used to handle situations where there are multiple wallets loaded i.e the things with Endpoint + "/wallet/" + WalletName
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@KonradStaniec yeah, wallet-endpoint
is not used so I'll be removing it, but we do use cfg.Endpoint + "/wallet/" + cfg.WalletName
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
This PR aims to remove support for
btcd
we will be only usingbitcoind
as our backend.References issue.